From: Jonathan Dieter Date: Sat, 14 Mar 2020 21:56:54 +0000 (+0000) Subject: Simplify Jenkinsfile since we're no longer doing parallel builds X-Git-Tag: archive/raspbian/1.1.9+ds1-1+rpi1~1^2~25 X-Git-Url: https://dgit.raspbian.org/%22http://www.example.com/cgi/%22/%22http:/www.example.com/cgi/%22?a=commitdiff_plain;h=8ae27233ae1dc4df6d060e3910be3ba0a80eab26;p=zchunk.git Simplify Jenkinsfile since we're no longer doing parallel builds Signed-off-by: Jonathan Dieter --- diff --git a/Jenkinsfile b/Jenkinsfile index c886e93..5f3df2d 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -1,43 +1,19 @@ node { checkout scm stage('Build') { - fedora: { - sh "./autotest/fedora-latest/build.sh" - }, - centos: { - sh "./autotest/centos-7/build.sh" - }, - opensuse: { - sh "./autotest/opensuse-leap/build.sh" - }, - alpine: { - sh "./autotest/alpine-edge/build.sh" - }, - debian: { - sh "./autotest/debian-latest/build.sh" - }, - ubuntu: { - sh "./autotest/ubuntu-rolling/build.sh" - } + sh "./autotest/fedora-latest/build.sh" + sh "./autotest/centos-7/build.sh" + sh "./autotest/opensuse-leap/build.sh" + sh "./autotest/alpine-edge/build.sh" + sh "./autotest/debian-latest/build.sh" + sh "./autotest/ubuntu-rolling/build.sh" } stage('Test') { - fedora: { - sh "./autotest/fedora-latest/test.sh" - }, - centos: { - sh "./autotest/centos-7/test.sh" - }, - opensuse: { - sh "./autotest/opensuse-leap/test.sh" - }, - alpine: { - sh "./autotest/alpine-edge/test.sh" - }, - debian: { - sh "./autotest/debian-latest/test.sh" - }, - ubuntu: { - sh "./autotest/ubuntu-rolling/test.sh" - } + sh "./autotest/fedora-latest/test.sh" + sh "./autotest/centos-7/test.sh" + sh "./autotest/opensuse-leap/test.sh" + sh "./autotest/alpine-edge/test.sh" + sh "./autotest/debian-latest/test.sh" + sh "./autotest/ubuntu-rolling/test.sh" } }